From 3ffc2735e326c88c563a6696456e71632b1f9873 Mon Sep 17 00:00:00 2001 From: "iap10@freefall.cl.cam.ac.uk" Date: Sun, 14 Aug 2005 21:45:26 +0000 Subject: [PATCH] Make the default network-script to be '' i.e. don't run a network script. Fix Makefile to actually install network-bridge script. Signed-off-by: ian@xensource.com --- tools/examples/Makefile | 2 +- tools/python/xen/xend/XendRoot.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/examples/Makefile b/tools/examples/Makefile index 54ad20fd94..c0b7fffc95 100644 --- a/tools/examples/Makefile +++ b/tools/examples/Makefile @@ -16,7 +16,7 @@ XEN_CONFIGS += xmexample.vmx # Xen script dir and scripts to go there. XEN_SCRIPT_DIR = /etc/xen/scripts -XEN_SCRIPTS = network vif-bridge +XEN_SCRIPTS = network-bridge vif-bridge XEN_SCRIPTS += network-route vif-route XEN_SCRIPTS += block-file XEN_SCRIPTS += block-enbd diff --git a/tools/python/xen/xend/XendRoot.py b/tools/python/xen/xend/XendRoot.py index b12b0268b7..279dd14622 100644 --- a/tools/python/xen/xend/XendRoot.py +++ b/tools/python/xen/xend/XendRoot.py @@ -315,7 +315,7 @@ class XendRoot: return self.get_config_value('block-%s' % type, '') def get_network_script(self): - return self.get_config_value('network-script', 'network') + return self.get_config_value('network-script', '') def get_enable_dump(self): return self.get_config_bool('enable-dump', 'no') -- 2.30.2